home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Freelog 121
/
FreelogMagazineJuilletAout2014-No121.iso
/
Outils
/
Adobe-Air
/
adobe-air_13.exe
/
[0]
/
setup.swf
/
scripts
/
mx
/
effects
/
IEffectInstance.as
< prev
next >
Wrap
Text File
|
2014-03-27
|
2KB
|
79 lines
package mx.effects
{
import flash.events.Event;
import mx.effects.effectClasses.PropertyChanges;
public interface IEffectInstance
{
function get playheadTime() : Number;
function get triggerEvent() : Event;
function set triggerEvent(param1:Event) : void;
function get hideFocusRing() : Boolean;
function initEffect(param1:Event) : void;
function set startDelay(param1:int) : void;
function get effectTargetHost() : IEffectTargetHost;
function finishEffect() : void;
function set hideFocusRing(param1:Boolean) : void;
function finishRepeat() : void;
function set repeatDelay(param1:int) : void;
function get effect() : IEffect;
function startEffect() : void;
function get duration() : Number;
function get target() : Object;
function get startDelay() : int;
function stop() : void;
function set effectTargetHost(param1:IEffectTargetHost) : void;
function set propertyChanges(param1:PropertyChanges) : void;
function set effect(param1:IEffect) : void;
function get className() : String;
function set duration(param1:Number) : void;
function set target(param1:Object) : void;
function end() : void;
function resume() : void;
function get propertyChanges() : PropertyChanges;
function set repeatCount(param1:int) : void;
function reverse() : void;
function get repeatCount() : int;
function pause() : void;
function get repeatDelay() : int;
function set suspendBackgroundProcessing(param1:Boolean) : void;
function play() : void;
function get suspendBackgroundProcessing() : Boolean;
}
}